home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------------------------------------
- // Main
- //
- // by Philip McBride
- //
- //--------------------------------------------------------------------------------------------
-
-
- #include "GameControls.h"
- #include "main.h"
- #include "inits.h"
- #include "event.h"
-
- //--------------------------------------------------------------------------------------------
- // Main
- //
- void main(void)
- {
-
- InitializeToolbox();
-
- SetCursor(*GetCursor(watchCursor)) ;
-
- InitializeGlobals();
-
- InitAEStuff();
-
- SetCursor(&qd.arrow) ;
-
- EventLoop();
-
- DeallocateGlobals();
- }
-